home *** CD-ROM | disk | FTP | other *** search
- FAQ - Machine ‡ Ècrire
-
- <head>
- <script language="Javascript">
- var texte = "Texte affichÈ dans la barre d'Ètat";
- var LongueurTexte = texte.length;
- var TexteAPlacer = "";
- var pause = 10;
- var i=0;
- var j=0;
- var LargeurAnimation = 5;
- var position=LargeurAnimation;
- function empilement() {
- if (texte.charAt(i) != " ") {
- TexteAPlacer = "";
- for (j=0; j<i; j++) {
- TexteAPlacer += texte.charAt(j);
- }
- for (j=i; j<position; j++) {
- TexteAPlacer += " ";
- }
- TexteAPlacer += texte.charAt(i);
- for (j=position; j<LargeurAnimation; j++) {
- TexteAPlacer += " ";
- }
- window.status = TexteAPlacer;
- if (position == i) {
- LargeurAnimation++;
- position = LargeurAnimation;
- i++;
- }
- else {
- position--;
- }
- }
- else {
- i++
- }
- if (i<LongueurTexte) {
- setTimeout("empilement()",pause);
- }
- }
- </script>
- </head>
-
- <body OnLoad="empilement()">
-